home *** CD-ROM | disk | FTP | other *** search
/ PCMania 27 / PCMania CD27_1.iso / pcmania / pov27 / infinito.pov < prev    next >
Text File  |  1994-10-28  |  2KB  |  86 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "shapes.inc"
  4. camera{   
  5.   location <-2.5,0,3.1>
  6.   look_at  <-2,-1.-5,2>
  7. }
  8. // Una serie de luces de diferntes colores
  9. object{
  10.   light_source{<0,30,-60> color NeonPink}
  11. }
  12. object{
  13.   light_source{<-3,0,1> color Yellow }
  14. }
  15. object{
  16.   light_source{<-1,5,0> color Red }
  17. }
  18. object{
  19.   light_source{<-5.5,-4.8,-3.8> color BlueViolet }
  20. }
  21. object{
  22.   light_source{<5.5,-4.8,-3.8> color Blue }
  23. }
  24. object{
  25.   sphere{<-5,1.7,0>,.6}
  26.   pigment{color Goldenrod}
  27.   finish{phong 1 reflection .5}
  28.   normal{dents .7 scale .5}
  29. }
  30. object{
  31.   sphere{<-3,-.7,-1>,.3}
  32.   texture{White_Marble scale .1}
  33.   finish{phong 1}
  34. }
  35. object{
  36.  sphere{<-4.5,-2,-.50>,1}
  37.  texture{
  38.   pigment{
  39.    radial
  40.     color_map{
  41.     [0.5 color Blue]
  42.     [0.5 color White]
  43.     }
  44.   frequency 48
  45.   }
  46.   finish{Metal}
  47.   rotate -x*90
  48.  }
  49. }
  50. object{
  51.   sphere{<0,-3.5,.7>,.8}
  52.   pigment{color Pink}
  53.   finish{reflection .3 phong 1}
  54. }
  55. object{
  56.   sphere{<0,0,0>,2}
  57.   texture{
  58.    pigment{
  59.     bozo  
  60.     color_map{
  61.       [0.0 0.2 color Silver color Brass]
  62.       [0.2 0.3 color Silver color Gray35 ]
  63.       [0.3 0.4 color Navy color Brass]
  64.       [0.4 0.5 color Brass color White]
  65.       [0.5 0.6 color White color Silver]
  66.       [0.6 0.7 color Silver color Navy]
  67.       [0.7 0.8 color Navy color Silver]
  68.       [0.8 1.0 color Silver color Brass]
  69.     }
  70.    }
  71.   finish{
  72.    Metal
  73.    reflection 0.1
  74.    ambient 0.5
  75.   }
  76.   }
  77.   texture{pigment{color Red filter 0.5} finish{metallic}}
  78. }
  79. // La caja de espejos donde estan las esferas
  80. object{
  81.   difference{
  82.     box{<-6.5,-5.5,-3.5><6.5,5.5,3.5> pigment{color Blue}}
  83.     box{<-6.2,-5.2,-4.5><6.2,5.2,3.2> finish{Mirror}}
  84.   }
  85. }
  86.